home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / print / gs261sr1.zip / GP_DOSFB.C < prev    next >
C/C++ Source or Header  |  1993-05-12  |  6KB  |  201 lines

  1. /* Copyright (C) 1992 Aladdin Enterprises.  All rights reserved.
  2.  
  3. This file is part of Ghostscript.
  4.  
  5. Ghostscript is distributed in the hope that it will be useful, but
  6. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  7. to anyone for the consequences of using it or for whether it serves any
  8. particular purpose or works at all, unless he says so in writing.  Refer
  9. to the Ghostscript General Public License for full details.
  10.  
  11. Everyone is granted permission to copy, modify and redistribute
  12. Ghostscript, but only under the conditions described in the Ghostscript
  13. General Public License.  A copy of this license is supposed to have been
  14. given to you along with Ghostscript so you can know your rights and
  15. responsibilities.  It should be in a file named COPYING.  Among other
  16. things, the copyright notice and this notice must be preserved on all
  17. copies.  */
  18.  
  19. /* gp_dosfb.c */
  20. /* MS-DOS frame buffer swapping routines for Ghostscript */
  21. #include <conio.h>
  22. #include "malloc_.h"
  23. #include "memory_.h"
  24. #include "gx.h"
  25. #include "gp.h"
  26. #include "gserrors.h"
  27. #include "gxdevice.h"
  28.  
  29. /* On MS-DOS machines, we maintain a console image in memory, */
  30. /* and swap screens on request. */
  31. #define cw_width 80
  32. #define cw_height 25
  33. typedef struct text_line_s {
  34.     int end;
  35.     char text[cw_width + 1];
  36. } text_line;
  37. typedef struct {
  38.     text_line *line;
  39.     text_line lines[cw_height];
  40. } ds_text_screen;
  41.  
  42. private ds_text_screen *console;
  43.  
  44. private int console_is_current;
  45.  
  46. /* Buffer one scan line of graphics. */
  47. #define row_buf_size 1280
  48. private char graphics_file_name[] = "_temp_.gfb";
  49.  
  50. /* Forward references */
  51. private int save_graphics(P1(gx_device *));
  52. private int restore_graphics(P1(gx_device *));
  53.  
  54. /* Initialize the console buffer. */
  55. void
  56. gp_init_console(void)
  57. {    console = (ds_text_screen *)gs_malloc(1, sizeof(ds_text_screen), "gp_init_console(dosfb)");
  58.     if ( console != 0 )
  59.     {    memset(&console->lines, 0, sizeof(console->lines));
  60.         console->line = &console->lines[0];
  61.         console_is_current = 0;
  62.     }
  63.     else
  64.         console_is_current = 1;
  65. }
  66.  
  67. /* Write a string to the console. */
  68. void
  69. gp_console_puts(const char *str, uint size)
  70. {    register ds_text_screen *cop = console;
  71.     register text_line *lip;
  72.     if ( console == 0 )
  73.     {    fwrite(str, 1, size, stdout);
  74.         return;
  75.     }
  76.     lip = cop->line;
  77.     for ( ; size ; str++, size-- )
  78.       switch ( *str )
  79.        {
  80.     case '\n':
  81.         if ( lip == &cop->lines[cw_height - 1] )
  82.            {    /* Scroll up */
  83.             memcpy(&cop->lines[0], &cop->lines[1],
  84.                    sizeof(text_line) * (cw_height - 1));
  85.            }
  86.         else
  87.             cop->line = ++lip;
  88.         lip->end = 0;
  89.         break;
  90.     case '\t':
  91.         gp_console_puts("        ", 8 - (lip->end & 7));
  92.         lip = cop->line;
  93.         break;
  94.     default:
  95.         if ( lip->end == cw_width )
  96.            {    gp_console_puts("\n", 1);
  97.             lip = cop->line;
  98.            }
  99.         lip->text[lip->end++] = *str;
  100.        }
  101. }
  102.  
  103. /* Make the console current on the screen. */
  104. int
  105. gp_make_console_current(gx_device *dev)
  106. {    int code = 0;
  107.     if ( console == 0 )
  108.         return 0;
  109.     if ( !console_is_current )
  110.         code = save_graphics(dev);
  111.     /* Transfer the console buffer to the screen. */
  112.     /* Unfortunately, there is no standard way to clear the screen. */
  113.     /* Output the ANSI sequence and hope for the best. */
  114.     cputs("\r\033[2J\r    \r");
  115.        {    int i;
  116.         register text_line *lip;
  117.         for ( i = 0, lip = &console->lines[0]; i < cw_height; i++, lip++ )
  118.            {    if ( i != 0 ) cputs("\r\n");
  119.             lip->text[lip->end] = 0;
  120.             cputs(lip->text);
  121.            }
  122.        }
  123.     console_is_current = 1;
  124.     return code;
  125. }
  126.  
  127. /* Make the graphics current on the screen. */
  128. int
  129. gp_make_graphics_current(gx_device *dev)
  130. {    if ( console == 0 )
  131.         return 0;
  132.     if ( console_is_current )
  133.        {    int code = restore_graphics(dev);
  134.         if ( code < 0 ) return code;
  135.         console_is_current = 0;
  136.        }
  137.     return 0;
  138. }
  139.  
  140. /* ------ Internal routines ------ */
  141.  
  142. /* We compress the pixmap just a little, by noting */
  143. /* replicated bytes at the beginning and end of a line. */
  144. typedef struct { ushort pre, post; } row_head;
  145.  
  146. /* Save the graphics screen on a file. */
  147. private int
  148. save_graphics(gx_device *dev)
  149. {    uint row_size = gx_device_raster(dev, 0);
  150.     char row_buf[row_buf_size];
  151.     FILE *gfile;
  152.     int y;
  153.     if ( row_size > row_buf_size ) return -1;
  154.     gfile = fopen(graphics_file_name, "wb");
  155.     if ( gfile == 0 ) return gs_error_ioerror;
  156.     for ( y = 0; y < dev->height; y++ )
  157.        {    char _ss *row = row_buf;
  158.         (*dev->procs->get_bits)(dev, y, row, NULL);
  159.            {    row_head head;
  160.             char _ss *beg = row, *end = row + row_size - 1;
  161.             while ( end > beg && *end == end[-1] ) end--;
  162.             if ( beg < end )
  163.                 while ( *beg == beg[1] ) beg++;
  164.             head.pre = beg - row;
  165.             head.post = end + 1 - row;
  166.             fwrite((char *)&head, 1, sizeof(head), gfile);
  167.             fwrite(beg, head.post - head.pre, 1, gfile);
  168.             row += row_size;
  169.            }
  170.        }
  171.     fclose(gfile);
  172.     return 0;
  173. }
  174.  
  175. /* Restore the graphics screen from a file. */
  176. private int
  177. restore_graphics(gx_device *dev)
  178. {    FILE *gfile;
  179.     uint row_size = gx_device_raster(dev, 0);
  180.     char row_buf[row_buf_size];
  181.     int y;
  182.     if ( row_size > row_buf_size ) return -1;
  183.     gfile = fopen(graphics_file_name, "rb");
  184.     if ( gfile == 0 ) return gs_error_ioerror;
  185.     for ( y = 0; y < dev->height; y ++ )
  186.        {    row_head head;
  187.         char _ss *beg, *end;
  188.         fread((char *)&head, 1, sizeof(head), gfile);
  189.         beg = row_buf + head.pre;
  190.         end = row_buf + head.post;
  191.         fread(beg, 1, end - beg, gfile);
  192.         if ( head.pre )
  193.             memset(row_buf, *beg, head.pre);
  194.         if ( head.post < row_size )
  195.             memset(end, end[-1], row_size - head.post);
  196.         (*dev->procs->copy_color)(dev, row_buf, 0, row_size, gx_no_bitmap_id, 0, y, dev->width, 1);
  197.        }
  198.     fclose(gfile);
  199.     return 0;
  200. }
  201.